1. Open the webChat.js file.
2. Replace the notifyNewMessage function with that of the SDK
3. Remove the getCurrentTranscript function.
4. Open the webChatSocket.js file
5. Remove the reloadUsers, saveTranscript and loadTranscript functions.
6. Update the setupRefresh function to resemble the following (preserving the comma at the end of the snippet):
    setupRefresh: function(){
        'use strict';
        console.debug("WebChat: Refreshing page");
        var users = webChat.users;
        avayaGlobal.setSessionStorage("guid", webChat.guid);
        avayaGlobal.setSessionStorage("ak", webChat.ak);
        avayaGlobal.setSessionStorage("custDetails", JSON.stringify(webChat.custDetails));
        avayaGlobal.setSessionStorage("reloadTimestamp", Date.now());
        chatSocket.saveTranscript();
        avayaGlobal.setSessionStorage("users", JSON.stringify(users));
    },
7. Update the reloadAfterRefresh method to match the SDK as follows:
    Remove the call to chatSocket.loadTranscript() (lines 273-274)
    Remove the timeout function that calls chatSocket.reloadUsers (lines 278-284)
8. Add the following line to the reconnect function, just before the setTimeout call
    webChat.custDetails.isContinuingAfterRefresh = false;
9. Open the webChatUI.js file and remove the getTranscriptElements function.
